UNPKG

@commercelayer/react-components

Version:
8 lines (7 loc) 409 B
import type { BaseInputComponentProps, GiftCardInputName } from '../../typings/index'; import type { JSX } from "react"; type Props = { name: GiftCardInputName; } & Omit<BaseInputComponentProps, 'name'> & Omit<JSX.IntrinsicElements['input'], 'children'> & Omit<JSX.IntrinsicElements['textarea'], 'children'>; export declare function GiftCardInput(props: Props): JSX.Element; export default GiftCardInput;