import React from 'react';
import type { CustomRenderFunctionArg } from '@visactor/vtable/es/ts-types';
type CustomLayoutProps = {
    componentId: string;
};
export type CustomLayoutFunctionArg = Partial<CustomRenderFunctionArg> & {
    role?: 'custom-layout' | 'header-custom-layout';
    renderDefault?: boolean;
};
export declare const CustomLayout: React.FC<CustomLayoutProps>;
export {};
