import { LineSeparatorLinePropsStylesType } from '../lineSeparator/types/lineSeparatorTheme';
import { FooterPropsStylesType } from './types/footerTheme';
type FooterStylesType = {
    styles: FooterPropsStylesType;
    $setVertical?: boolean;
    $flexReverse?: boolean;
    /**
     * @deprecated
     */
    $alignItems?: string;
};
type FooterSectionStyledType = FooterStylesType & {
    $justifyContent: string;
};
type RootContainerStyledType = FooterStylesType & {
    lineSeparatorLineStyles: LineSeparatorLinePropsStylesType;
};
export declare const FooterSectionStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, FooterSectionStyledType>> & string;
export declare const FooterStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, RootContainerStyledType>> & string;
export {};
