///
export declare const RourerConfig: ({ visible, routerRules, onClose, }: {
routerRules: any[];
visible: boolean;
onClose: () => void;
}) => JSX.Element;
export declare const RourerConfigDialog: any;
export declare const ResourceError: ({ errorMap, kinds, }: {
errorMap: Record;
kinds: string[];
}) => JSX.Element;
export declare const getNameProps: (type: string) => {
title: any;
dataIndex: string;
lock: string;
width: string;
cell: (name: string, _index: number, record: {
child?: boolean;
kind?: string;
}) => JSX.Element;
};
export declare const statusProps: {
title: any;
dataIndex: string;
width: string;
cell: (state: string) => React.ReactNode;
};
export declare const versionProps: {
title: any;
dataIndex: string;
width: string;
cell: (labels: Record) => JSX.Element;
};
export declare const updateTimeProps: {
title: any;
dataIndex: string;
width: string;
cell: (time: string) => JSX.Element;
};
export declare const actionProps: {
title: any;
dataIndex: string;
width: string;
cell: (deliveries: string) => JSX.Element;
};