import { TemplateResult } from 'lit'; import '../src/kmap-solvee.js'; declare const _default: { title: string; component: string; argTypes: { textColor: { control: string; }; backgroundColor: { control: string; }; borderColor: { control: string; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { textColor?: string; backgroundColor?: string; borderColor?: string; slot?: TemplateResult; } export declare const Regular: Story; export declare const SlottedContent: Story;