import React from 'react'; import { type IconProps } from './core'; declare const BASE_MAP: { readonly '16': React.JSX.Element; readonly '24': React.JSX.Element; }; interface IconLayeredSquareLinesProps extends IconProps { base?: keyof typeof BASE_MAP; } export declare function IconLayeredSquareLines({ base, ...props }: IconLayeredSquareLinesProps): React.JSX.Element; export {};