@commercelayer/react-components
Version:
The Official Commerce Layer React Components
8 lines (7 loc) • 409 B
TypeScript
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;