import type { FrameSettings } from '../types.js'; type CreateFrameOctagonSettingsProps = { styled?: boolean; animated?: boolean; leftTop?: boolean; rightTop?: boolean; rightBottom?: boolean; leftBottom?: boolean; squareSize?: number; padding?: number; strokeWidth?: number; }; declare const createFrameOctagonSettings: (props?: CreateFrameOctagonSettingsProps) => FrameSettings; export type { CreateFrameOctagonSettingsProps }; export { createFrameOctagonSettings };