///
import { Theme } from 'styled-components';
import { TextProperties } from '../types';
export interface Props extends TextProperties {
listStyle?: string;
indent?: string;
}
export interface ThemedProps extends Props {
theme: Theme;
}
export declare const UnorderedList: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLUListElement>, Props>>;
export declare const OrderedList: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLOListElement>, Props>>;
export declare const ListItem: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLLIElement>, Props>>;