import { type RefObject, type JSX } from 'react'; import type { BaseState } from '../../typings/index'; import type { DefaultChildrenType } from '../../typings/globals'; interface Props extends Omit { children: DefaultChildrenType; onSubmit?: (values: BaseState) => void; ref?: RefObject; } export declare function GiftCard(props: Props): JSX.Element; export default GiftCard;