import { getColorValues } from '@codeandfunction/callaloo-tokens'; export declare const baseContentBox: () => string; interface BaseFormElementProps { backgroundColor?: string; borderColor?: string; placeholderColor?: string; } export declare const baseFormElement: ({ backgroundColor, borderColor, placeholderColor }: BaseFormElementProps) => string; export declare const css: (template: TemplateStringsArray, ...args: any[]) => string; interface FocusProps { borderColor?: string; outlineWidth?: string; outlineOffset?: string; outlineColor?: string; shadowWidth?: string; shadowColor?: string; } export declare const focusTheme: ({ borderColor, outlineWidth, outlineOffset, outlineColor, shadowWidth, shadowColor }: FocusProps) => string; export { getColorValues };