import { templates } from "../../../templates"; interface SearchResultLoadingProps { stringTemplate: keyof typeof templates; } declare const SearchResultLoading: ({ stringTemplate }: SearchResultLoadingProps) => JSX.Element; export { SearchResultLoading };