import { Ref } from 'react'; import { MenuItemProps } from 'react-aria-components'; import { TextInputProps } from '../TextInput'; export type ActionItemProps = MenuItemProps & { flag?: string; name?: string; prefix?: string; initials?: string; }; export type CountryMenuProps = { selectedCountry: string; onSelect: (c: string) => void; size: TextInputProps['size']; isDisabled?: boolean; ref: Ref; }; export declare const phoneLabelVariants: (props?: ({ isSuccess?: boolean | null | undefined; isInvalid?: boolean | null | undefined; isDisabled?: boolean | null | undefined; size?: "default" | "m" | "s" | "l" | null | undefined; isFixed?: boolean | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type PhoneInputProps = TextInputProps; //# sourceMappingURL=types.d.ts.map