import { SvelteComponentTyped } from "svelte";
import type { useAction } from '../../types/global';
declare const __propDef: {
    props: {
        useAction?: useAction<HTMLElement>;
        class?: string | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export declare type AvatarStackProps = typeof __propDef.props;
export declare type AvatarStackEvents = typeof __propDef.events;
export declare type AvatarStackSlots = typeof __propDef.slots;
export default class AvatarStack extends SvelteComponentTyped<AvatarStackProps, AvatarStackEvents, AvatarStackSlots> {
}
export {};
