/** * Payload emitted when selection tile checked state changes. */ export declare type VegaSelectionTileCheckedPayload = { /** * Whether the tile is currently checked. */ checked: boolean; /** * Unique identifier value associated with this tile. */ value: string; };