baseui
Version:
A React Component library implementing the Base design language
27 lines (26 loc) • 583 B
TypeScript
declare const defaultProps: {
'aria-label': string;
'aria-describedby': any;
'aria-labelledby': any;
clearable: boolean;
focusLock: boolean;
country: {
label: string;
id: string;
dialCode: string;
};
disabled: boolean;
error: boolean;
id: any;
maxDropdownHeight: string;
maxDropdownWidth: string;
name: any;
onCountryChange: () => void;
onTextChange: () => void;
overrides: {};
positive: boolean;
required: boolean;
size: "default";
text: string;
};
export default defaultProps;