import { TwoTonedIcon } from '../iconTypes'; interface SecurityBlockedStateProps extends TwoTonedIcon { primaryColor?: string; secondaryColor?: string; } declare const SecurityBlockedState: ({ className, primaryColor, height, secondaryColor, title, width, }: SecurityBlockedStateProps) => JSX.Element; export default SecurityBlockedState;