export interface DpRule {
    type: 'static' | 'dynamic';
    options?: Array<{
        label: string;
        value: string;
    }>;
    apiEndpoint?: string;
    pagination?: boolean;
    pageSize?: number;
    enableServerSideSearch?: boolean;
    searchParameter?: string;
    autocomplete?: boolean;
}
export declare function isValidDpRule(dpRule: any): dpRule is DpRule;
