@activecollab/components
Version:
ActiveCollab Components
10 lines • 420 B
TypeScript
/// <reference types="react" />
interface SearchContextProps {
search: string;
onChangeSearch: (value: string) => void;
}
export declare const SearchContext: import("react").Context<SearchContextProps>;
export declare const SearchContextProvider: import("react").Provider<SearchContextProps>;
export declare const useSearchContext: () => SearchContextProps;
export {};
//# sourceMappingURL=SearchContext.d.ts.map