import { SvelteComponent, Snippet } from 'svelte'; import { HTMLAttributes } from 'svelte/elements'; export interface Props { class?: string; /** * Component's HTML Element * * @default 'div' */ component?: string | typeof SvelteComponent; /** * Renders group outer hairlines (borders). (in Material theme only) * * @default true */ dividers?: boolean; /** * Object with Tailwind CSS colors classes * */ colors?: { /** * * @default '' */ bgIos?: string; /** * * @default 'bg-md-light-surface-3 dark:bg-md-dark-surface-3' */ bgMaterial?: string; }; } interface ActionsGroupProps {} interface ActionsGroupProps extends Props {} interface ActionsGroupEvents extends Record<'',{}>{} declare class ActionsGroup extends SvelteComponent< ActionsGroupProps & Omit, keyof Props>, ActionsGroupEvents, { } > {} export default ActionsGroup;