mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 01:57:57 +00:00
10 lines
330 B
TypeScript
10 lines
330 B
TypeScript
import type { KeyringStore } from '@pezkuwi/ui-keyring/types';
|
|
import React from 'react';
|
|
interface Props {
|
|
isElectron: boolean;
|
|
store?: KeyringStore;
|
|
}
|
|
declare function Root({ isElectron, store }: Props): React.ReactElement<Props>;
|
|
declare const _default: React.MemoExoticComponent<typeof Root>;
|
|
export default _default;
|