import { Theme } from '../theme'; import { CSSObject } from '@emotion/css'; export declare const interactiveColor: (fn: (props: Props) => { backgroundColor: string; color: string; }) => (props: Props) => CSSObject; export declare const outline: ({ borderRadius, focus, }?: { borderRadius?: number | ((props: Props) => number) | undefined; focus?: boolean | undefined; }) => (props: Props) => CSSObject;