/** * Extracts aria attributes from an object, separating them from other props * @param props The props object to separate * @returns A tuple containing [ariaAttributes, otherProps] */ export declare function extractAriaAttributes(props: T): [Record, Omit];