import { Deposit as DepositRoot } from "./deposit"; import { DepositWithDialog, DepositWithSheet } from "./dialog"; export type { DepositProps } from "./deposit"; type Deposit = typeof DepositRoot & { withDialog: typeof DepositWithDialog; withSheet: typeof DepositWithSheet; }; declare const Deposit: Deposit; export { Deposit }; //# sourceMappingURL=index.d.ts.map