import { CSSProperties } from 'react'; import { Theme } from '../theme'; import { BaseComponentProps } from '../types'; export declare function useTheme(customTheme?: BaseComponentProps['theme']): { theme: Theme; customStyle: (...styles: (object | undefined)[]) => CSSProperties; };