export interface PickConfig { aria?: boolean; data?: boolean; attr?: boolean; } /** * Pick specific props from existing props * @param props Passed props * @param ariaOnly boolean | { aria?: boolean; data?: boolean; attr?: boolean; } filter config */ export declare const pickAttrs: (props: object, ariaOnly?: boolean | PickConfig) => {};