/** @typedef {typeof __propDef.props} SwatchesProps */ /** @typedef {typeof __propDef.events} SwatchesEvents */ /** @typedef {typeof __propDef.slots} SwatchesSlots */ export default class Swatches extends SvelteComponentTyped<{ shape?: any; colour?: any; columns?: number | null | undefined; swatch_size?: number | undefined; swatch_width?: number | undefined; swatch_height?: number | undefined; }, { [evt: string]: CustomEvent; }, {}> { } export type SwatchesProps = typeof __propDef.props; export type SwatchesEvents = typeof __propDef.events; export type SwatchesSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { shape?: import("../../types/common").scale | string | any; colour?: import("../../types/common").scale | string | any; columns?: number | null | undefined; swatch_size?: number | undefined; swatch_width?: number | undefined; swatch_height?: number | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};