import { type StyledProps } from "../StyledProps"; interface Props extends React.ComponentPropsWithRef<"ul">, StyledProps { className?: string; compact?: boolean; leftAlign?: boolean; listStyle?: string; } declare const List: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLUListElement>, Props>> & string; export default List;