import type { PropsWithChildren } from 'react'; export interface ExcludeProps { key: string; source: Record; } export declare const excludeClassName: (props: PropsWithChildren) => object; declare const exclude: ({ key, source }: ExcludeProps) => object; export default exclude;