/// import { TransactionSender, TransactionSenderType } from 'components/TransactionSender'; import { TransactionsTracker, TransactionsTrackerType } from 'components/TransactionsTracker'; export interface CustomComponentsType { transactionSender?: { component: typeof TransactionSender; props?: TransactionSenderType; }; transactionTracker?: { component: typeof TransactionsTracker; props?: TransactionsTrackerType; }; } export declare function CustomComponents({ customComponents }: { customComponents?: CustomComponentsType; }): JSX.Element; //# sourceMappingURL=CustomComponents.d.ts.map