import ShakeFormComponent from './ShakeFormComponent'; import ShakePickerItem from './ShakePickerItem'; /** * Represents Shake form Picker. */ declare class ShakePicker extends ShakeFormComponent { /** * Determines component key. * @type {string} string value */ key: string; /** * Determines component label. * @type {string | null} string value */ label: string | null; /** * Determines native resource name to load as a label. * @type {string | null} native resource name */ labelRes: string | null; /** * Determines list of items to load in the picker. * @type {array} list of ShakePickerItem */ items: Array; constructor(key?: string, label?: string, items?: Array); } export default ShakePicker; //# sourceMappingURL=ShakePicker.d.ts.map