import { SnippetTypes } from '../utils/prop-types'; import { HuiThemesPalette } from '../themes'; export type SnippetStyles = { color: string; border: string; bgColor: string; }; export declare const getStyles: (type: SnippetTypes, palette: HuiThemesPalette, fill?: boolean) => SnippetStyles;