export declare class BiArticleContainer { /** * The size of the article container * * When the size is small, the container will have max 2 columns, and images will be displayed on the left side and hidden on small screens. * When the size is large, the container will have max 4 columns, and images will be displayed on the top and always visible. * * The articles will be placed in a grid starting at the left side. * * @default 'small' */ size: 'small' | 'large'; render(): any; }