import { TextInputProps } from "react-native"; interface RoundSearchInputProps extends Omit { onLeftIconPress?: () => void; /** * The placeholder can be an array of string, specifically for android, because of a bug. * On ios, the longest string will always be picked, as ios can add ellipsis. * On android, the longest string **that fits** will be picked, as android doesn't use ellipsis. * The way to use it is to put the longest string first, and the shortest string last. * * Check `HACKS.md` for more info. * * @example * const placeholders = [ * "Wow this is a great and very long placeholder", * "Wow this is a great and long placeholder", * "Wow this is a great placeholder", * "Wow", * ] * ... * */ placeholder?: string | string[]; } export declare const RoundSearchInput: React.FC; export declare const SEARCH_INPUT_CONTAINER_HEIGHT = 48; export declare const SEARCH_INPUT_CONTAINER_BORDER_RADIUS = 24; export {};