import type { WithoutThemingProps } from "../types"; /** * Removes theming properties (theme, clearTheme, applyTheme) * * @template T - The type of the object * @param {T} props - The object to remove theming properties from * @returns {WithoutThemingProps} The object without theming properties (theme, clearTheme, applyTheme) */ export declare function withoutThemingProps(props: T): WithoutThemingProps;