export function FeatureProvider({ children, ...props }: {
    [x: string]: any;
    children: any;
}): JSX.Element;
export function Feature({ children, name, search }: {
    children: any;
    name?: string | undefined;
    search?: string | undefined;
}): any;
