import { FieldProps } from '../../types';
import type { MultiInputMaskProps } from '../../../../components/input-masked';
export type ExpiryProps = FieldProps<string, undefined | ''> & {
    /**
     * The size of the component.
     */
    size?: MultiInputMaskProps<'month' | 'year'>['size'];
};
declare function Expiry(props: ExpiryProps): import("react/jsx-runtime").JSX.Element;
declare namespace Expiry {
    var _supportsEufemiaSpacingProps: boolean;
}
export default Expiry;
