export interface Props { backgroundColor: string; foregroundColor: string; height: number; width: number; animated?: boolean; } declare function AutoCompleteResultLoader({ backgroundColor, foregroundColor, animated, width, height, }: Props): JSX.Element; export default AutoCompleteResultLoader;