import { UseAccountKeysOptions, UseAccountKeysStore } from './useAccountKeys';
type OptionalIfStore<T> = (T & {
    store?: undefined;
}) | (Partial<T> & {
    store: UseAccountKeysStore;
});
export type AccountKeysProps = OptionalIfStore<UseAccountKeysOptions> & {
    children?: React.ReactNode;
};
export declare const AccountKeys: {
    ({ children, store: controlledStore, ...accountKeysProps }: AccountKeysProps): import("@emotion/react/jsx-runtime").JSX.Element;
    Header: ({ children }: import("./components").AccountKeysHeaderProps) => import("@emotion/react/jsx-runtime").JSX.Element;
    Content: ({ children }: import("./components").AccountKeysContentProps) => import("@emotion/react/jsx-runtime").JSX.Element;
};
export {};
