import type { PluginContainerData } from 'ricos-schema'; import type { EditorPluginConfig, ViewerPluginConfig } from 'wix-rich-content-common'; export declare const COLLAPSIBLE_LIST_TYPE = "wix-rich-content-plugin-collapsible-list"; export interface CollapsibleListPluginEditorConfig extends EditorPluginConfig { isQapageData?: boolean; [key: string]: any; } export interface CollapsibleListPluginViewerConfig extends ViewerPluginConfig { [key: string]: any; } export type CollapsibleListComponentData = { containerData: PluginContainerData; expandOnlyOne: boolean; initialExpandedItems: InitialExpandedItems; direction?: ListDirection; isQapageData?: boolean; }; export declare const initialExpandedItems: { readonly FIRST: "FIRST"; readonly ALL: "ALL"; readonly NONE: "NONE"; }; export type InitialExpandedItems = (typeof initialExpandedItems)[keyof typeof initialExpandedItems]; export declare const listDirection: { readonly LTR: "LTR"; readonly RTL: "RTL"; }; export type ListDirection = (typeof listDirection)[keyof typeof listDirection]; //# sourceMappingURL=types.d.ts.map