import { ReactNode } from 'react';
interface AppLayoutProps {
    children?: ReactNode;
    title?: string;
    onSearch?: (searchTerm: string) => void;
}
declare const AppLayout: ({ children, title, onSearch, }: AppLayoutProps) => import("react/jsx-runtime").JSX.Element;
export default AppLayout;
