declare type FilterFunction = (entry: [string, unknown]) => entry is [string, TValue]; export declare function filterDataProps(props: object): Record; export declare function filterAriaProps(props: object): Record; export declare function filterProps(props: object, filterFn: FilterFunction): Record; export declare function isDataAttribute(entry: [string, unknown]): entry is [string, string]; export declare function isAriaAttribute(entry: [string, unknown]): entry is [string, unknown]; export {};