import type { ReactNode } from 'react';
export type AutocompleteListCardChildrenContextValue = {
    children: ReactNode;
};
export declare const AutocompleteListCardChildrenContextDefaultValue: AutocompleteListCardChildrenContextValue;
export declare const AutocompleteListCardChildrenContext: import("react").Context<AutocompleteListCardChildrenContextValue>;
export declare const useAutocompleteListCardChildrenContext: () => AutocompleteListCardChildrenContextValue;
