import { Styles } from '@wolf-tui/core'; export type OrderedListTheme = { styles: { list: () => { style: Partial; }; listItem: () => { style: Partial; }; marker: () => { style: Partial; }; content: () => { style: Partial; }; }; }; export type UnorderedListTheme = { styles: { list: () => { style: Partial; }; listItem: () => { style: Partial; }; marker: () => { style: Partial; }; content: () => { style: Partial; }; }; config: () => { marker: string | string[]; }; }; export declare const orderedListTheme: { styles: { list: () => { style: { flexDirection: string; }; }; listItem: () => { style: { flexDirection: string; }; }; marker: () => { style: { color: string; }; }; content: () => { style: { flexDirection: string; marginLeft: number; }; }; }; }; export declare const unorderedListTheme: { styles: { list: () => { style: { flexDirection: string; }; }; listItem: () => { style: { flexDirection: string; }; }; marker: () => { style: { color: string; }; }; content: () => { style: { flexDirection: string; marginLeft: number; }; }; }; config: () => { marker: string[]; }; }; //# sourceMappingURL=list-theme.d.ts.map