import type { Snippet } from 'svelte';
interface Props {
    cell: any;
    cellComponents: any;
    children: Snippet<[any]>;
}
declare const AppCell: import("svelte").Component<Props, {}, "">;
type AppCell = ReturnType<typeof AppCell>;
export default AppCell;
