import { PropsWithChildren } from 'react'; export type GroupSlaveProps = PropsWithChildren & { masterKey: string; }; export declare function GroupSlave({ masterKey, children }: GroupSlaveProps): import("react/jsx-runtime").JSX.Element;