/** * Represents item for Shake Picker. */ declare class ShakePickerItem { /** * Determines item key. * @type {string} string value */ key: string; /** * Represents item label. * @type {string | null} string value */ text: string | null; /** * Determines native resource name to load as a label. * @type {string | null} native resource name */ textRes: string | null; /** * Represents item icon. * @type {string | null} base64 image string */ icon: string | null; /** * Determines native resource name to load as an icon. * @type {string | null} native resource name */ iconRes: string | null; /** * Represents tag which will be added to the ticket on submit if item is selected. * @type {string | null} string value */ tag: string | null; constructor(key?: string, text?: string | null, icon?: string | null, tag?: string | null); } export default ShakePickerItem; //# sourceMappingURL=ShakePickerItem.d.ts.map