import React from 'react'; interface ISelectMenu { options: Array; onPress: (id: string) => void; selected: Array; selectAll?: () => void; clear?: () => void; } interface IOption { id: string; name: string; } export declare const SelectMenu: (props: ISelectMenu) => React.JSX.Element; export {};