import type { IOperationCardContext } from './OperationCard.types'; declare const OperationCardProvider: ({ value, children, }: { value: IOperationCardContext; children?: React.ReactNode; }) => React.JSX.Element; /** * Typed hook for children to access the current card state. The * generic parameter should match the `TTransfer` used on the Root. * * @example * ```tsx * const { state } = useOperationCard(); * ``` */ declare function useOperationCard(): IOperationCardContext; export { OperationCardProvider, useOperationCard }; //# sourceMappingURL=OperationCard.context.d.ts.map