import { MarginProps } from "styled-system"; import { PodProps } from "./pod.component"; import { PodSize, PodVariant } from "./pod.config"; declare const StyledPod: import("styled-components").StyledComponent<"div", any, { theme: object; } & MarginProps>> & Pick, "theme">; interface StyledBlockProps extends Pick { variant: PodVariant; noBorder: boolean; hasButtons: boolean; contentTriggersEdit?: boolean; fullWidth?: boolean; isHovered?: boolean; isFocused?: boolean; } declare const StyledBlock: import("styled-components").StyledComponent<"div", any, StyledBlockProps, never>; declare const StyledContent: import("styled-components").StyledComponent<"div", any, { size: PodSize; }, never>; interface StyledFooterProps extends Pick { variant: PodVariant; size: PodSize; } declare const StyledFooter: import("styled-components").StyledComponent<"div", any, StyledFooterProps, never>; declare const StyledActionsContainer: import("styled-components").StyledComponent<"div", any, Pick, never>; interface CommonPodButtonProps extends Pick { isHovered?: boolean; isFocused?: boolean; size: PodSize; noBorder: boolean; variant: PodVariant; } interface StyledEditActionProps extends CommonPodButtonProps { displayOnlyOnHover?: boolean; } declare const StyledEditAction: import("styled-components").StyledComponent>, any, StyledEditActionProps, never>; declare const StyledDeleteButton: import("styled-components").StyledComponent>, any, CommonPodButtonProps, never>; declare const StyledUndoButton: import("styled-components").StyledComponent>, any, CommonPodButtonProps, never>; interface StyledHeaderProps extends Pick { size: PodSize; } declare const StyledHeader: import("styled-components").StyledComponent<"div", any, StyledHeaderProps, never>; declare const StyledSubtitle: import("styled-components").StyledComponent<"h5", any, {}, never>; declare const StyledTitle: import("styled-components").StyledComponent<"h4", any, {}, never>; export { StyledBlock, StyledContent, StyledEditAction, StyledActionsContainer, StyledDeleteButton, StyledUndoButton, StyledFooter, StyledPod, StyledHeader, StyledSubtitle, StyledTitle, };