import { ControlBlockButtonProps } from './control-block-button.types'; import { CSSObject, FlattenSimpleInterpolation } from 'styled-components'; import { default as React } from 'react'; export declare const StyledLinkButton: React.ForwardRefExoticComponent & React.AnchorHTMLAttributes & { text?: string | undefined; contentRight?: React.ReactNode; contentLeft?: React.ReactNode; additionalContent?: React.ReactNode; isLoading?: boolean | undefined; loader?: React.ReactNode; disabled?: boolean | undefined; view?: string | undefined; size?: string | undefined; } & React.RefAttributes, "ref"> & React.RefAttributes>; export declare const StyledDivider: import('styled-components').StyledComponent & import('../../../Divider').DividerProps & React.RefAttributes>, import('styled-components').DefaultTheme, {}, never>; export declare const ControlBlockButton: ({ dropdown, isLastButtonInnArray, index, view, showLabel, text, itemID, buttonStyles, ...buttonProps }: ControlBlockButtonProps & { isLastButtonInnArray?: boolean; index: number; showLabel?: boolean; buttonStyles?: string | CSSObject | FlattenSimpleInterpolation; }) => import("react/jsx-runtime").JSX.Element;