import type { JSX, ReactNode } from "react"; import type { ChildrenFunction } from "../../typings/index"; interface ChildrenProps extends Omit { } interface Props extends Omit { children?: ChildrenFunction; label?: string | ReactNode; } export declare function GiftCardOrCouponSubmit(props: Props): JSX.Element; export default GiftCardOrCouponSubmit;