type DataAttributes = Partial>; /** * Filters and returns all data-* attributes from props. * This allows components to accept standard HTML data attributes * in their natural hyphenated syntax (e.g., data-test-id, data-loading). * * @param props - The component props object * @returns An object containing only the data-* attributes * * @example * ```tsx * const dataAttrs = filterDataAttributes(props); * return ; * ``` */ export declare function filterDataAttributes(props: T): DataAttributes; export {};