import { Country } from '../data/Flags'; import { BaseComponent, CustomTokens } from './_shared'; export type ZFlag_Custom = 'size'; export type ZFlag_Props = BaseComponent & Partial<{ /** ... */ readonly country: Country; /** */ readonly custom: CustomTokens; }>; export declare const zFlagSlots: never[]; export type ZFlag_Slots = (typeof zFlagSlots)[number]; export type ZFlag_Events = {};