declare const COMMON_SCHEMA_PROP_KEYS: readonly ["columns", "customOptions", "label", "referenceKey", "showIf", "uiType", "validation"]; type CommonSchemaPropKey = (typeof COMMON_SCHEMA_PROP_KEYS)[number]; type ExistingCommonSchemaPropKey = Extract; export declare const filterSchemaProps: (schema: T) => { commonSchema: Pick>; customSchema: Omit>; }; export {};