import * as T from "./StyledComponents.type"; import { Link as RouterDomLink } from "react-router-dom"; export declare const renderCss: (props: T.IMainCssType) => import("styled-components").FlattenInterpolation>; export declare function customMediaQuery({ maxWidth, minWidth }: T.ICustomMediaQuery): string | undefined; export declare const mediaCss: { custom: typeof customMediaQuery; XLarge: string | undefined; large: string | undefined; desktop: string | undefined; tablet: string | undefined; phone: string | undefined; }; export declare const Table: import("styled-components").StyledComponent<"table", any, T.ITable, never>; export declare const TR: import("styled-components").StyledComponent<"tr", any, T.ITableRow, never>; export declare const TH: import("styled-components").StyledComponent<"th", any, T.ITableHead, never>; export declare const TD: import("styled-components").StyledComponent<"td", any, T.ITableData, never>; export declare const TBody: import("styled-components").StyledComponent<"tbody", any, T.ITBody, never>; export declare const THead: import("styled-components").StyledComponent<"thead", any, T.ITHead, never>; export declare const Button: import("styled-components").StyledComponent<"button", any, T.IButton, never>; export declare const Flex: import("styled-components").StyledComponent<"div", any, T.IFlex, never>; export declare const Relative: import("styled-components").StyledComponent<"div", any, T.IRelative, never>; export declare const Absolute: import("styled-components").StyledComponent<"div", any, T.IAbsolute, never>; export declare const Fixed: import("styled-components").StyledComponent<"div", any, T.IFixed, never>; export declare const Image: import("styled-components").StyledComponent<"img", any, T.IImage, never>; export declare const Br: import("styled-components").StyledComponent<"div", any, T.IBr, never>; export declare const Hr: import("styled-components").StyledComponent<"div", any, T.IHr, never>; export declare const List: import("styled-components").StyledComponent<"ul", any, T.IList, never>; export declare const ListItem: import("styled-components").StyledComponent<"li", any, T.IListItem, never>; export declare const DropDownItem: import("styled-components").StyledComponent<"li", any, T.IListItem & T.IDropDownItem, never>; export declare const Input: import("styled-components").StyledComponent<"input", any, T.IInput, never>; export declare const CheckBox: import("styled-components").StyledComponent<"input", any, { type: "checkbox"; } & T.ICheckBox, "type">; export declare const RadioButton: import("styled-components").StyledComponent<"input", any, { type: "radio"; } & T.IRadio, "type">; export declare const TextArea: import("styled-components").StyledComponent<"textarea", any, T.ITextArea, never>; export declare const Label: import("styled-components").StyledComponent<"label", any, T.ILabel, never>; export declare const H1: import("styled-components").StyledComponent<"h1", any, T.IH1, never>; export declare const H2: import("styled-components").StyledComponent<"h2", any, T.IH2, never>; export declare const H3: import("styled-components").StyledComponent<"h3", any, T.IH3, never>; export declare const H4: import("styled-components").StyledComponent<"h4", any, T.IH4, never>; export declare const H5: import("styled-components").StyledComponent<"h5", any, T.IH5, never>; export declare const H6: import("styled-components").StyledComponent<"h6", any, T.IH6, never>; export declare const Del: import("styled-components").StyledComponent<"del", any, T.IDel, never>; export declare const Em: import("styled-components").StyledComponent<"em", any, T.IEm, never>; export declare const P: import("styled-components").StyledComponent<"p", any, T.IP, never>; export declare const Small: import("styled-components").StyledComponent<"small", any, T.ISmall, never>; export declare const Span: import("styled-components").StyledComponent<"span", any, T.ISpan, never>; export declare const Strong: import("styled-components").StyledComponent<"strong", any, T.IStrong, never>; export declare const Star: import("styled-components").StyledComponent<"span", any, T.IStar, never>; export declare const TooltipContainer: import("styled-components").StyledComponent<"span", any, T.ISpan & T.IToolTip, never>; export declare const TagContainer: import("styled-components").StyledComponent<"div", any, T.IFlex, never>; export declare const TreeListContainer: import("styled-components").StyledComponent<"div", any, T.ITreeListContainer, never>; export declare const Link: import("styled-components").StyledComponent; export declare const Form: import("styled-components").StyledComponent<"form", any, T.IForm, never>; export declare const Switch: import("styled-components").StyledComponent<"input", any, { type: "checkbox"; } & T.ISwitch, "type">; export declare const Container: import("styled-components").StyledComponent<"div", any, T.IContainer, never>; export declare const A: import("styled-components").StyledComponent<"a", any, T.IA, never>;