import { CardAlign } from "../card.config";
export interface StyledCardColumnProps {
    /** Text alignment of the card section text */
    align: CardAlign;
}
declare const StyledCardColumn: import("styled-components").StyledComponent<"div", any, StyledCardColumnProps, never>;
export default StyledCardColumn;
