mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-23 00:07:57 +00:00
9 lines
319 B
TypeScript
9 lines
319 B
TypeScript
import type { KeyringOptions } from '@pezkuwi/ui-keyring/options/types';
|
|
import React from 'react';
|
|
interface Props {
|
|
optionsAll?: KeyringOptions;
|
|
}
|
|
declare function Status({ optionsAll }: Props): React.ReactElement<Props>;
|
|
declare const _default: React.MemoExoticComponent<typeof Status>;
|
|
export default _default;
|